How to use Investigation Support System (BISS)

Settings

Input data

Search wamei

  • Choose “Tools” tab tools_tab

  • Input wamei and Choose “Search Text”

  • Show results
    search_wamei
    search_wamei_res

  • Use space (” “) to search including [A and B]

  • Results of [A and B]
    search_wamei_multi
    search_wamei_multi_res

  • Can use [A and B and C]
    search_wamei_multi

  • Case of results over 100

  • Alert will be desplayed and show only 100 results
    search_wamei_over100
    search_wamei_over100_alert
    search_wamei_over100_res

  • 空欄でSearch Textを選択すると,検索結果がクリアされる
    search_wamei_clear
    search_wamei

Inport data into R

read_biss <- function(json, join = TRUE){
  biss <- jsonlite::fromJSON(json)
  plot <- data.frame(biss$plot)
  occ  <- data.frame(biss$occ)
  if(join){
    return(dplyr::left_join(plot, occ))
  }else{
    return(list(plot = plot, occ = occ))
  }
}

library(jsonlite)
url <- "https://raw.githubusercontent.com/matutosi/biodiv/main/man/example.json"
json <- readr::read_tsv(url, col_names = FALSE)$X1

read_biss(json)
read_biss(json, join = FALSE)